POST api/function/{authenticationToken}/{loanKey}/{functionName}
This method is used to execute a loan function.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
authenticationToken |
Current authentication token |
string |
Required |
loanKey |
The loan key string identifying the loan whose function will be executed |
string |
Required |
functionName |
The name of the container function to be executed |
string |
Required |
Body Parameters
This is a list of parameters being passed into the container function
Collection of ObjectNone.
Request Formats
application/json, text/json
Sample:
[ {}, {} ]
application/xml, text/xml
Sample:
<ArrayOfanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <anyType /> <anyType /> </ArrayOfanyType>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Returns an object with one property named Data. This Data property is a dictionary of the tables and columns returned from the container function.
HttpResponseMessageName | Description | Type | Additional information |
---|---|---|---|
Version | Version |
None. |
|
Content | HttpContent |
None. |
|
StatusCode | HttpStatusCode |
None. |
|
ReasonPhrase | string |
None. |
|
Headers | Collection of Object |
None. |
|
RequestMessage | HttpRequestMessage |
None. |
|
IsSuccessStatusCode | boolean |
None. |